home *** CD-ROM | disk | FTP | other *** search
- // CDemo1DlgView.h -- view class
- // Created 01/01/95 12:01 PM by AppMaker
-
-
- class CDemo1DlgView : public CView
- {
- // Attributes
- public:
- virtual ~CDemo1DlgView();
- virtual void OnDraw(CDC *pDC);
- CDemo1DlgDoc *GetDocument();
-
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected: // create from serialization only
- CDemo1DlgView();
- DECLARE_DYNCREATE(CDemo1DlgView)
-
- // Message maps
- protected:
- DECLARE_MESSAGE_MAP()
-
- virtual BOOL OnPreparePrinting(CPrintInfo *pInfo);
- virtual void OnBeginPrinting(CDC *pDC, CPrintInfo *pInfo);
- virtual void OnEndPrinting(CDC *pDC, CPrintInfo *pInfo);
-
- //{{AFX_MSG(CDemo1DlgView)
- afx_msg void OnTestDialog1();
- afx_msg void OnTestDialog2();
- //}}AFX_MSG
- };
-
- #ifndef _DEBUG // debug version in CDemo1DlgView.cpp
- inline CDemo1DlgDoc *CDemo1DlgView::GetDocument()
- {
- return (CDemo1DlgDoc*) m_pDocument;
- }
- #endif
-